home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / LGP250S1.ZIP / src / libgplus.5 / libgplus / test-ins / a.cc next >
C/C++ Source or Header  |  1991-10-05  |  119b  |  11 lines

  1. #include <stream.h>
  2. #include <String.h>
  3.  
  4. String s1 = "Hello";
  5. String s2 = " world!\n";
  6.  
  7. main()
  8. {
  9.     cout << s1 << s2 ;
  10. }
  11.